home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar / 1998 / May / di9805rs / Llist.dfm / Llist.txt
Text File  |  1997-12-31  |  976b  |  50 lines

  1. object LinkedListForm: TLinkedListForm
  2.   Left = 128
  3.   Top = 101
  4.   Width = 264
  5.   Height = 311
  6.   Caption = 'Linked List'
  7.   Font.Charset = DEFAULT_CHARSET
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   OnCreate = FormCreate
  13.   OnDestroy = FormDestroy
  14.   OnMouseUp = FormMouseUp
  15.   OnPaint = FormPaint
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object ValueText: TEdit
  19.     Left = 8
  20.     Top = 8
  21.     Width = 129
  22.     Height = 21
  23.     MaxLength = 20
  24.     TabOrder = 0
  25.     OnChange = ValueTextChange
  26.   end
  27.   object CmdInsertAfter: TButton
  28.     Left = 32
  29.     Top = 40
  30.     Width = 81
  31.     Height = 25
  32.     Caption = 'Insert After'
  33.     Default = True
  34.     Enabled = False
  35.     TabOrder = 1
  36.     OnClick = CmdInsertAfterClick
  37.   end
  38.   object CmdRemoveAfter: TButton
  39.     Left = 32
  40.     Top = 72
  41.     Width = 81
  42.     Height = 25
  43.     Cancel = True
  44.     Caption = 'Remove After'
  45.     Enabled = False
  46.     TabOrder = 2
  47.     OnClick = CmdRemoveAfterClick
  48.   end
  49. end
  50.